home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / graphics / mray.arj / MRYDFLT2.INC < prev    next >
Text File  |  1993-07-07  |  799b  |  46 lines

  1. //
  2. //  This is MORAY's default standard include file for POV 2.0.
  3. //  called MRYDFLT2.INC
  4. //
  5. //  It defines a standard scene environment of a grass plane on the 'floor'
  6. //  and a blue sky that gets hazy towards the horizon.
  7. //
  8.  
  9. #include "colors.inc"
  10. #include "textures.inc"
  11. #include "shapes.inc"
  12.  
  13. plane {
  14.   <0.0, 0.0, 1.0>, -0.01
  15.   texture {
  16.     pigment {
  17.       rgb <0.0, 1.0, 0.0>
  18.     }
  19.     finish {
  20.       ambient 0.4
  21.       diffuse 0.3
  22.       phong 0.2
  23.       phong_size 5
  24.       crand 0.075
  25.     }
  26.   }
  27. }
  28.  
  29. sphere {
  30.   <0, 0, 0>, 1
  31.   texture {
  32.     pigment {
  33.       gradient z
  34.       color_map {
  35.          [0, 1 color rgb <0.9,0.9,1.0> color rgb <0.4,0.5,1.0> ]
  36.       }
  37.     }
  38.     finish {
  39.       ambient 1.0
  40.       diffuse 0.0
  41.     }
  42.   }
  43.   scale <1000,1000,1000>
  44. }
  45.  
  46.